home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
utils
/
lparser3
/
distant.bat
< prev
next >
Wrap
DOS Batch File
|
1993-12-08
|
920b
|
36 lines
@echo off
rem --- L-System Parser/Mutator --- Lj Lapre -------------------------------
rem
rem Exec 'distant ls-file' (without .ls extension!) to get multiple children
rem from a mother form. Each child is 10 generations removed from the mother.
rem
rem Try 'distant lsys00'
rem
rem Mother
rem ┌─────┬─────┬┴────┬─────┬─────┬──────┐
rem │ │ │ │ │ │ │
rem │ │ │ │ │ │ │
rem │ │ │ │ │ │
rem Child Child Child Child Child Child Etc.
rem
rem The form on the screen will be stored in the file mutation.ls.
rem
rem The -s500 option is to limit the size off the l-string to 500K.
rem The -p50000 option is to limit the size off the form to 50000 polygons.
rem
rem The mother
lparser %1
lviewer -f output
rem The children
:begin
lparser -s500 -p50000 -u5 %1
lviewer -f output
goto begin